home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / sendcom2.zip / SENDCOM.DOC next >
Text File  |  1991-10-15  |  3KB  |  72 lines

  1.  
  2. PCBOARD is a registered trademark of Clark Development Company, Inc.
  3.  
  4. *:::::::::::::::::::::::::::[ DISCLAIMER ]:::::::::::::::::::::::::::::::::*
  5.  
  6. SENDCOM.EXE by Bill Shields is released to public domain.
  7.  
  8. SENDCOM.EXE is provided AS IS without any warranty,  expressed or implied.
  9. This  includes  without  limitation  the  fitfulness  to  a particular
  10. purpose or application and any warranties of merchantability.  While I tried
  11. to be as thorough as  possible while  debugging SENDCOM.EXE, I shall  not  be
  12. liable for any damages, whether direct, indirect, special,  or  consequential
  13. arising  from a failure of SENDCOM.EXE to operate in a manner desired by the
  14. user. I shall  not be  liable for  any damage to data or property which may
  15. by caused directly or indirectly  by use of SENDCOM.EXE.
  16.  
  17. In no event will I be liable to you for any damages, including any lost
  18. profits, lost savings or  other incidental or consequential  damages arising
  19. out of your use or inability to use the program, or for any claim by any
  20. other party.
  21.  
  22. *::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
  23.  
  24. SYNTAX  
  25. ======
  26. SENDCOM /F filename 
  27.    -- OR --
  28. SENDCOM  string
  29.  
  30. SENDCOM Supports PCBOARD @X commands.   Program reads PCBOARD.SYS for 
  31. ANSI mode and Communication port.  If you are using this program 
  32. locally SENDCOM will not attempt to send data to a communication port.
  33.  
  34. This program was designed for use in a multi-node environment using 
  35. PCBOARD version 14.5a.  For earlier versions of PCBOARD you will get 
  36. an error if you attempt to use this program outside of the home 
  37. directory because it won't be able to find PCBOARD.SYS.  For Single 
  38. nodes this is an easy fix... Placing a
  39.  
  40. APPEND C:\PCB
  41.  
  42. in the autoexec.bat file would fix that problem.  SENDCOM could then 
  43. be executed from any directory.  For multiple nodes you would have to 
  44. set the PCBDRIVE and PCBDIR environment variables.
  45.  
  46. The program gets the %PCBDRIVE% and %PCBDIR% environment variables and 
  47. picks up the PCBOARD.SYS file from there (allowing it to be used from 
  48. anywhere/anynode).  
  49.  
  50.  
  51. EXAMPLE <string>
  52. =======
  53. C>SENDCOM CR THIS IS LINE ONE CR this is line two CR this is line three
  54.  
  55. Would display the following on the remote and host terminal...
  56. THIS IS LINE ONE
  57. this is line two
  58. this is line three
  59.  
  60. Where CR must have spaces on both sides.  It will set a Carriage Return/Linfeed
  61. and continue displaying line.
  62.  
  63.  
  64. EXAMPLE <filename>
  65. =======
  66. C>SENDCOM /F filename
  67.  
  68. Will display the file "filename" if it finds it.  If not an error message, 
  69. stating that the filename is missing, will appear on remote and host terminals.
  70. The command line must be in the above sequence for the file function to work.
  71.  
  72.